home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gallery_injection3.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(12030);
  9.  script_bugtraq_id(9490);
  10.  script_version ("$Revision: 1.5 $");
  11.  name["english"] = "gallery code injection (3)";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. It is possible to make the remote host include php files hosted
  17. on a third party server using Gallery.
  18.  
  19. An attacker may use this flaw to inject arbitrary code in the remote
  20. host and gain a shell with the privileges of the web server.
  21.  
  22. Solution : Upgrade to Gallery 1.4.1 pl1 or newer
  23. Risk factor : High";
  24.  
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the presence of init.php";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_ATTACK);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  38.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54. port = get_http_port(default:80);
  55.  
  56.  
  57. if( ! get_port_state(port))exit(0);
  58. if( ! can_host_php(port:port) ) exit(0);
  59. if(http_is_dead(port:port))exit(0);
  60.  
  61. function check(url)
  62. {
  63. req = http_get(item:string(url, "/init.php?HTTP_POST_VARS[GALLERY_BASEDIR]=http://xxxxxxxx./"),
  64.          port:port);
  65. r = http_keepalive_send_recv(port:port, data:req);
  66. if ( r == NULL ) exit(0);
  67.  if("http://xxxxxxxx./Version.php" >< r)
  68.      {
  69.      security_hole(port);
  70.     exit(0);
  71.     }
  72.  
  73. }
  74.  
  75. check(url:"");
  76. foreach dir (cgi_dirs())
  77. {
  78.  check(url:dir);
  79. }
  80.